internal/runtime/maps.Iter.m (field)

17 uses

	internal/runtime/maps (current package)
		table.go#L509: 	m    *Map
		table.go#L557: 	it.m = m
		table.go#L572: 	return it.m
		table.go#L617: 	entries := 1 << (it.m.globalDepth - it.tab.localDepth)
		table.go#L627: 	newKey, newElem, ok := it.m.getWithKey(it.typ, key)
		table.go#L652: 		if it.clearSeq == it.m.clearSeq && !it.typ.Key.Equal(key, key) {
		table.go#L675: 	if it.m == nil {
		table.go#L682: 	if it.m.writing != 0 {
		table.go#L706: 			grown := it.m.dirLen > 0
		table.go#L710: 				newKey, newElem, ok := it.m.getWithKey(it.typ, key)
		table.go#L713: 					if it.clearSeq == it.m.clearSeq && !it.typ.Key.Equal(key, key) {
		table.go#L742: 	if it.globalDepth != it.m.globalDepth {
		table.go#L772: 		orders := it.m.globalDepth - it.globalDepth
		table.go#L777: 		it.globalDepth = it.m.globalDepth
		table.go#L781: 	for ; it.dirIdx < it.m.dirLen; it.nextDirIdx() {
		table.go#L784: 			dirIdx := int((uint64(it.dirIdx) + it.dirOffset) & uint64(it.m.dirLen-1))
		table.go#L785: 			newTab := it.m.directoryAt(uintptr(dirIdx))